home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / ASM-ARM / LEDS.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  412b  |  25 lines

  1. /*
  2.  * include/asm-arm/leds.h
  3.  *
  4.  * Copyright (C) 1998 Russell King
  5.  *
  6.  * Event-driven interface for LEDs on machines
  7.  *
  8.  * Added led_start and led_stop- Alex Holden, 28th Dec 1998.
  9.  */
  10. #ifndef ASM_ARM_LEDS_H
  11. #define ASM_ARM_LEDS_H
  12.  
  13. typedef enum {
  14.     led_idle_start,
  15.     led_idle_end,
  16.     led_timer,
  17.     led_start,
  18.     led_stop
  19. } led_event_t;
  20.  
  21. /* Use this routine to handle LEDs */
  22. extern void leds_event(led_event_t);
  23.  
  24. #endif
  25.